home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #1 / Amiga Plus CD - 2000 - No. 1.iso / Tools / Dev / Meshwriter / reflections.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-12-03  |  1.8 KB  |  53 lines

  1. /*
  2. **      $VER: reflections.h 1.00 (13.02.1999)
  3. **
  4. **      Creation date : 02.01.1999
  5. **
  6. **      Description       :
  7. **         Standart saver module for meshwriter.library.
  8. **         Saves the mesh as Reflections file.
  9. **
  10. **
  11. **      Written by Stephan Bielmann
  12. **
  13. */
  14.  
  15. #ifndef INCLUDE_REFLECTIONS_H
  16. #define INCLUDE_REFLECTIONS_H
  17.  
  18. /*************************** Includes *******************************/
  19.  
  20. /*
  21. ** Amiga includes
  22. */
  23. #include <dos/dos.h>
  24.  
  25. /*
  26. ** Project includes
  27. */
  28. #include "meshwriter_private.h"
  29.  
  30. /*************************** Functions ******************************/
  31.  
  32. /********************************************************************\
  33. *                                                                    *
  34. * Name         : write3REF4                                          *
  35. *                                                                    *
  36. * Description  : Writes a standart reflections 4.X binary file.      *
  37. *                Revision 9 dated : 01.09.1996                       *
  38. *                                                                    *
  39. * Arguments    : reffile  IN : An already opened file stream.        *
  40. *                mesh     IN : Pointer to the mesh.                  *
  41. *                                                                    *
  42. * Return Value : RCNOERROR                                           *
  43. *                RCWRITEDATA                                         *
  44. *                                                                    *
  45. * Comment      : No default material.                                *
  46. *                                                                    *
  47. \********************************************************************/
  48. extern ULONG write3REF4(BPTR reffile, TOCLMesh *mesh);
  49.  
  50. #endif
  51.  
  52. /************************* End of file ******************************/
  53.